home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / class < prev    next >
Text File  |  1994-04-25  |  455b  |  28 lines

  1. class:
  2.  
  3. Syntax:    class ( A )
  4.  
  5.     Class returns a string which identifies the type of the object
  6.     that A represents. Valid classes are:
  7.  
  8.             num
  9.               string
  10.               list
  11.               function
  12.  
  13.     It is often useful to:
  14.  
  15.     if(class(m) == "num") 
  16.           {
  17.       // Perform numerical computation on m
  18.     }
  19.  
  20.  
  21.     The class of a variable can also be determined by using the
  22.     class member reference (except for LISTs), like:
  23.  
  24.     > zeros.class
  25.     function
  26.  
  27. See Also: show, type
  28.